751f95b44f6ce5c262aed4781e333dfbe20fa08c,spring-statemachine-build-tests/src/test/java/org/springframework/statemachine/buildtests/ForkJoinEntryExitTests.java,ForkJoinEntryExitTests,testJoinExits,#,73

Before Change


					.stateMachine(stateMachine)
					.step().expectState("S1").and()
					.step()
						.sendEvent("E1")
						.expectStates("S2", "S210", "S220").and()
					.step()
						.sendEvent("E2")
						.expectStateEntered(1)

After Change


					.stateMachine(stateMachine)
					.step().expectState("S1").and()
					.step()
						.sendEvent("E1")
						.expectStateEntered(3)
						.expectStateExited(1)
						.expectStates("S2", "S210", "S220").and()
					.step()
						.sendEvent("E2")
						.expectStateEntered(1)